From 01dc757ea3a59f5f34d2fabd925c7c9a53378dda Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 23 Jun 2009 17:27:01 +0100 Subject: [PATCH] xend: Fix python syntax error Signed-off-by: Christoph Egger --- tools/python/xen/xm/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py index 93e019038e..9a0ae3e306 100644 --- a/tools/python/xen/xm/create.py +++ b/tools/python/xen/xm/create.py @@ -660,7 +660,7 @@ def configure_image(vals): # This allows guest migration to a Dom0 having different # xen install pathes. config_image.append([ 'kernel', vals.kernel ]) - elif os.path.exists(os.path.abspath(vals.kernel)) + elif os.path.exists(os.path.abspath(vals.kernel)): # Keep old behaviour, if path is valid. config_image.append([ 'kernel', os.path.abspath(vals.kernel) ]) else: -- 2.30.2